home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / myvcs / myvcsopn.pas < prev   
Pascal/Delphi Source File  |  1995-12-22  |  568b  |  33 lines

  1. unit Myvcsopn;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   StdCtrls, ExtCtrls, Forms, FileCtrl, Buttons;
  8.  
  9. type
  10.   TVCSOpenForm = class(TForm)
  11.     BitBtn1: TBitBtn;
  12.     BitBtn2: TBitBtn;
  13.     DriveComboBox1: TDriveComboBox;
  14.     FileListBox1: TFileListBox;
  15.     DirectoryListBox1: TDirectoryListBox;
  16.     FilterComboBox1: TFilterComboBox;
  17.     Edit1: TEdit;
  18.     Label1: TLabel;
  19.     Label2: TLabel;
  20.     Label3: TLabel;
  21.     Label4: TLabel;
  22.     Label5: TLabel;
  23.   end;
  24.  
  25. var
  26.   VCSOpenForm: TVCSOpenForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.